home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / ibmaux20.zip / IBMAUX.DOC < prev    next >
Text File  |  1986-04-24  |  4KB  |  129 lines

  1.  
  2. IBMAUX1.SYS and IBMAUX2.SYS version 2.0                       04/25/86
  3. Written by Wayne E. Conrad
  4. Modified by Gee M. Wong (Fido 107/312)
  5.  
  6.  
  7.  
  8.  
  9. NOTICE
  10. ------
  11.  
  12. This  facility  may  be  used  free  anywhere by anyone.  You use this
  13. facility whatever way you like, but you may not sell it.
  14.  
  15.  
  16.  
  17.  
  18. DISCLAIMER
  19. ----------
  20.  
  21. You  may  use  this  facility  at  you own risk.  Neither the original
  22. author nor the party or parties which have modified the code make  any
  23. expressed  or  impiled  warranty  of  any  kind  with  regard to these
  24. programs nor the documentation which follows.  In no event  shall  the
  25. author  nor  the party or parties involded be liable for incidental or
  26. consequential damages in connection or arising out of the  furnishing,
  27. performance or use of these programs.
  28.  
  29. If you can not accept the terms of this disclaimer, then kindly delete
  30. this document and the programs assocuated with it and forget that  you
  31. ever saw them.
  32.  
  33.  
  34.  
  35.  
  36. PURPOSE
  37. -------
  38.  
  39. This  facility  has  been  designed to provide the Sysop with a way to
  40. allow visting Sysops to exit to DOS for the purpose of  assisting  the
  41. HOST  Sysop  with  an  installation  problem.  The keyboard and screen
  42. redirection perform by this facility is not as robust as that provided
  43. by  using  either  CTTY  COM1  or CTTY COM2, but this facility has the
  44. advatange of permitting both Sysops to be able to see  what  is  going
  45. on.   This  capablity  enhances  the  Sysops  ability  to  guide  each
  46. other through DOS and to work together on solving a problem.
  47.  
  48.  
  49.  
  50.  
  51. INTRODUCTION
  52. ------------
  53.  
  54. IBMAUX1.SYS  and  IBMAUX2.SYS  are a revised version of the IBMAUX.SYS
  55. device driver which is an original work of Wayne E.  Conrad.   I  have
  56. simply   modified   the  code  to  permit  the  user  to  establish  a
  57. simultaneous keyboard and screen seesion at the DOS prompt with either
  58. COM1  or  COM2  by  using  the  commmand  CTTY AUX1 or CTTY AUX2.  The
  59. original version driver named IBMAUX.SYS only supported COM1 with  the
  60. command  CTTY AUX.
  61.  
  62.  
  63.  
  64.  
  65. HOW TO USE THE IBMAUX DEVICE DRIVERS
  66. ------------------------------------
  67.  
  68. To  use  this facility, you would code the following statement in your
  69. CONFIG.SYS file:
  70.  
  71.  
  72.                 device=[d:][path\]IBMAUX1.SYS
  73.  
  74.  
  75. if you intent to establish a simultaneous session through COM1, or
  76.  
  77.  
  78.                 device=[d:][path\]IBMAUX1.SYS
  79.  
  80.  
  81. if you intend to establish a simultaneous session through COM2.
  82.  
  83.  
  84. The  drive  quailifer  [d:] and the path qualifer [path\] are optional
  85. and may be omitted if the device driver is kept on the root  directory
  86. of the boot drive.
  87.  
  88.  
  89. With  the  appropriate  device  driver  installed,  you  may establish
  90. simultaneous keyboards and screens by using the command:
  91.  
  92.  
  93.                 CTTY AUX1
  94.  
  95. in place of
  96.  
  97.                 CTTY COM1
  98.  
  99. or
  100.  
  101.                 CTTY AUX2
  102.  
  103. in place of
  104.  
  105.                 CTTY COM2
  106.  
  107.  
  108.  
  109.  
  110. KNOWN BUGS TO BE ADDRESSED IN THE FUTURE
  111. ----------------------------------------
  112.  
  113. 1) This  facility  will  disable ANSI.SYS on the terminal in which the
  114. driver is invoked using the CTTY command.  All ANSI type strings  will
  115. be  displayed  on the terminal as though if the ANSI.SYS device driver
  116. was never specified in the CONFIG.SYS file.
  117.  
  118. 2) This  facility  does  not  support the use of control characters or
  119. backspace on the side that is communicating with the device driver via
  120. the modem line.  Control-C  will  not  cause  a  break,  and  although
  121. backspace  will remove a character, the display will not reflect this.
  122. If you make a mistake and are confuse, it would be best to escape  out
  123. of the current command line and to retype the command.
  124.  
  125. 3) This  facility will hang your system if the device driver is invoke
  126. via the CTTY command but there is no body for  the  device  driver  to
  127. talk to via the modem.
  128.  
  129.